home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / pgp23src.zip / SRC / LANGUAGE.H < prev    next >
C/C++ Source or Header  |  1993-05-09  |  643b  |  21 lines

  1. /*
  2.  *    language.h
  3.  *    Include file for PGP foreign language translation facility
  4.  */
  5.  
  6.  
  7. /* Strings with PSTR() around them are found by automatic tools and put
  8.  * into the special text file to be translated into foreign languages.
  9.  * PSTR () (note the space between 'R' and '(') should be used if there
  10.  * is no string to be extracted (eg. prototype).
  11.  */
  12.  
  13. extern char    *PSTR (char *s);
  14.  
  15. /* Use the dummy macro _PSTR for strings that should be extracted, but
  16.  * shouldn't be processed by the PSTR function (eg. array initializers).
  17.  */
  18. #define _PSTR(x)    x
  19.  
  20. extern char language[]; /* language selector prefix for string file */
  21.